home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.3 (Developer)…68k, x86, SPARC, PA-RISC] / NeXTSTEP 3.3 Dev Intel.iso / NextDeveloper / Source / GNU / libg++ / libiberty / vfprintf.c < prev    next >
C/C++ Source or Header  |  1994-02-15  |  212b  |  14 lines

  1. #include <stdio.h>
  2. #include <varargs.h>
  3. #include <ansidecl.h>
  4. #undef vfprintf
  5.  
  6. int
  7. vfprintf (file, format, ap)
  8.      FILE *file;
  9.      const char *format;
  10.      va_list ap;
  11. {
  12.    return _doprnt (format, ap, file);
  13. }
  14.